type crypto/tls.keyShare

8 uses

	crypto/tls (current package)
		common.go#L147: type keyShare struct {
		handshake_client.go#L156: 		hello.keyShares = []keyShare{{group: curveID, data: key.PublicKey().Bytes()}}
		handshake_client_tls13.go#L249: 		hs.hello.keyShares = []keyShare{{group: curveID, data: key.PublicKey().Bytes()}}
		handshake_messages.go#L92: 	keyShares                        []keyShare
		handshake_messages.go#L564: 				var ks keyShare
		handshake_messages.go#L643: 	serverShare                  keyShare
		handshake_server_tls13.go#L183: 	var clientKeyShare *keyShare
		handshake_server_tls13.go#L223: 	hs.hello.serverShare = keyShare{group: selectedGroup, data: key.PublicKey().Bytes()}